home *** CD-ROM | disk | FTP | other *** search
- /*
- Form.h
- Application Kit, Release 2.0
- Copyright (c) 1988, 1989, 1990, NeXT, Inc. All rights reserved.
- */
-
- #import "NSMatrix.h"
-
- @interface NSForm : NSMatrix
- {
- }
-
- + setCellClass:factoryId;
-
- - initWithFrame:(NSRect)frameRect;
-
- - calcSize;
- - setFrameSize:(NSSize)_newSize;
- - sizeToFit;
- - (int)indexOfSelectedItem;
- - setEntryWidth:(float)width;
- - setInterline:(float)spacing;
- - setBordered:(BOOL)flag;
- - setBezeled:(BOOL)flag;
- - setTitleAlignment:(int)mode;
- - setTextAlignment:(int)mode;
- - setFont:fontObj;
- - setTitleFont:fontObj;
- - setTextFont:fontObj;
- - cellAtIndex:(int)index;
- - drawCellAtIndex:(int)index;
- - (NSString *)titleAtIndex:(int)index;
- - setTitle:(NSString *)aString atIndex:(int)index;
- - addEntry:(NSString *)title;
- - insertEntry:(NSString *)title atIndex:(int)index;
- - removeEntryAtIndex:(int)index;
- - (int)findIndexWithTag:(int)aTag;
- - selectTextAtIndex:(int)index;
-
- @end
-